automating installation tasks and new readme file

jamesperet 10 years ago
parent
commit
75a91d0b3a
4 changed files with 29 additions and 1 deletions
  1. BIN
      .DS_Store
  2. 21 0
      installer.sh
  3. 1 1
      makesymlinks.sh
  4. 7 0
      readme.md

BIN
.DS_Store


+ 21 - 0
installer.sh

@@ -0,0 +1,21 @@
1
+# install Git
2
+sudo port install git-core +svn +doc +bash_completion +gitweb
3
+
4
+# Install zShell
5
+sh makesymlinks.sh
6
+
7
+# Install homebrew
8
+ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
9
+
10
+# Install RVM
11
+\curl -L https://get.rvm.io | bash -s stable
12
+rvm install 1.9.3
13
+
14
+# Install rails
15
+gem install rails -v 3.2.13
16
+
17
+# Install node version manager
18
+
19
+# Install youtube-dl
20
+sudo curl https://yt-dl.org/downloads/2013.09.24.2/youtube-dl -o /usr/local/bin/youtube-dl
21
+sudo chmod a+x /usr/local/bin/youtube-dl

+ 1 - 1
makesymlinks.sh

@@ -56,4 +56,4 @@ else
56 56
 fi
57 57
 }
58 58
 
59
-# install_zsh
59
+install_zsh

+ 7 - 0
readme.md

@@ -0,0 +1,7 @@
1
+# James Peret's DotFiles
2
+
3
+### Installation
4
+
5
+1. Install xCode
6
+2. Install MacPorts
7
+3. `sh install.sh`